home *** CD-ROM | disk | FTP | other *** search
/ Computer Select (Limited Edition) / Computer Select.iso / pcc / v04n12 / batch2.exe / GOTONUM.BAT < prev    next >
Encoding:
DOS Batch File  |  1991-10-12  |  309 b   |  20 lines

  1. @ECHO OFF
  2. REM This is GOTONUM.BAT
  3. IF %1!==! GOTO OOPS
  4. FOR %%A IN (1 2 3) DO IF %1==%%A GOTO OKAY
  5. GOTO OOPS
  6. :OKAY
  7. GOTO LABEL%1
  8. :LABEL1
  9. ECHO You entered 1 
  10. GOTO END
  11. :LABEL2
  12. ECHO You entered 2
  13. GOTO END
  14. :LABEL3
  15. ECHO You entered 3
  16. GOTO END
  17. :OOPS
  18. ECHO Enter %0 and then a number from 1 to 3
  19. :END
  20.